home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / win_q_t / sloopmgr.zip / INSTALL.BAT next >
DOS Batch File  |  1991-12-03  |  802b  |  28 lines

  1. echo off
  2. echo                          Sloop Manager Installation
  3. echo.
  4. if "%1" == "" goto badparms
  5. if "%2" == "" goto badparms
  6. if "%1" == %2 goto badparms
  7. if not exist %1SLOOPMGR.EXE goto badparms
  8. %2
  9. md \sloopmgr
  10. cd \sloopmgr
  11. %1sloopmgr
  12. cls
  13. echo  Sloop Manager installation completed....
  14. echo.
  15. echo  To install the program into Windows, run SMINSTLL.EXE from the
  16. echo  File menu.
  17. goto done
  18. :badparms
  19. echo  Incorrect parameters.  You should be logged onto the floppy drive
  20. echo  containing the Sloop Manager program and type the following:
  21. echo.           
  22. echo                            INSTALL source: target:
  23. echo  where:
  24. echo         source   is the floppy drive letter you are installing from
  25. echo         target   is the hard drive letter you are installing to
  26. :done
  27.  
  28.